home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
html
/
vendors
/
htmedical
/
demos
/
RemoveIt2.csh
< prev
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-07-08
|
340b
|
27 lines
#!/bin/sh
echo "Remove T-Vox 1.0 Hot Mix Demo (y/n)? \c"
read a
test $a = 'y'
if [ $? -ne 0 ]
then
exit
fi
echo " "
echo "Removing T-Vox 1.0 Hot Mix Demo."
echo "Please wait, this will take a few minutes..."
echo " "
versions remove HotMixTVox
echo " "
echo "Done!"
echo " "
echo "Press Enter to exit this window... \c"
read a